home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 June / Macworld (1998-06).dmg / Shareware World / Utilities / Video / MVEMVC / MyVidCap 2.1 / Grab Snap Shot script < prev    next >
Text File  |  1997-10-13  |  503b  |  14 lines

  1. tell application "MyVidCap©-FAT"
  2.     activate
  3.     -- bring MyVidCap to the foreground
  4.     if Select Video Window then
  5.         -- make sure the video window is frontmost
  6.         if Take Picture as pict named "this snap pict" then
  7.             -- grab a snap shot pict of the video window to the default location
  8.             -- and save it as "this snap pict"
  9.             -- if "this snap pict" already exists, MyVidCap will delete it and 
  10.             -- then create a new "this snap pict" for you.
  11.             -- now you can do something with it
  12.         end if
  13.     end if
  14. end tell